home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / squid_overflows.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  73 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10923);
  10.  script_bugtraq_id(4148);
  11. script_cve_id("CVE-2002-0068");
  12.  script_version ("$Revision: 1.9 $");
  13.  name["english"] = "Squid overflows";
  14.  
  15.  script_name(english:name["english"]);
  16.  
  17.  desc["english"] = "
  18. The remote squid caching proxy, according to its version number,
  19. is vulnerable to various buffer overflows. 
  20.  
  21.  
  22. An attacker may use these to gain a shell on this system.
  23.  
  24.  
  25. Solution : upgrade to squid 2.4.STABLE7 or newer
  26. Risk factor : High";
  27.  
  28.  
  29.  script_description(english:desc["english"]);
  30.  
  31.  summary["english"] = "Determines squid version";
  32.  script_summary(english:summary["english"]);
  33.  
  34.  script_category(ACT_GATHER_INFO);
  35.  
  36.  script_copyright(english:"This script is Copyright (C) 2002 Renaud Deraison",
  37.            francais:"Ce script est Copyright (C) 2002 Renaud Deraison");
  38.  
  39.  family["english"] = "Gain a shell remotely"; 
  40.  family["francais"] = "Obtenir un shell α distance";
  41.  
  42.  script_family(english:family["english"],
  43.             francais:family["francais"]);
  44.  script_dependencie("find_service.nes");
  45.  script_require_ports("Services/http_proxy",3128, 8080);
  46.  exit(0);
  47. }
  48.  
  49. include("http_func.inc");
  50. include("http_keepalive.inc");
  51.  
  52. port = get_kb_item("Services/http_proxy");
  53. if(!port)
  54. {
  55.  if(get_port_state(3128))
  56.  { 
  57.   port = 3128;
  58.  }
  59.  else port = 8080;
  60. }
  61.  
  62. if(get_port_state(port))
  63. {
  64.  soc = open_sock_tcp(port);
  65.  if(soc)
  66.  {
  67.   req = http_get(item:"/", port:port);
  68.   res = http_keepalive_send_recv(data:req, port:port);
  69.   if(egrep(pattern:"Squid/2\.([0-3]|4\.STABLE[0-6])", string:res))
  70.       security_hole(port);
  71.  }
  72. }
  73.